The file employee.sql contains sql script to create the 'employee' and 'user' tables in a MySQL database.

To create a new database in MySQL use the following commands (from a command prompt)

mysql

mysql> create database employee;
mysql> exit

mysql employee < employee.sql


